type crypto/tls.cipherSuiteTLS13
14 uses
crypto/tls (current package)
cipher_suites.go#L193: type cipherSuiteTLS13 struct {
cipher_suites.go#L200: var cipherSuitesTLS13 = []*cipherSuiteTLS13{ // TODO: replace with a map.
cipher_suites.go#L629: func mutualCipherSuiteTLS13(have []uint16, want uint16) *cipherSuiteTLS13 {
cipher_suites.go#L638: func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 {
conn.go#L222: func (hc *halfConn) setTrafficSecret(suite *cipherSuiteTLS13, secret []byte) {
handshake_client_tls13.go#L33: suite *cipherSuiteTLS13
handshake_server_tls13.go#L32: suite *cipherSuiteTLS13
key_schedule.go#L35: func (c *cipherSuiteTLS13) expandLabel(secret []byte, label string, context []byte, length int) []byte {
key_schedule.go#L54: func (c *cipherSuiteTLS13) deriveSecret(secret []byte, label string, transcript hash.Hash) []byte {
key_schedule.go#L62: func (c *cipherSuiteTLS13) extract(newSecret, currentSecret []byte) []byte {
key_schedule.go#L71: func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
key_schedule.go#L76: func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
key_schedule.go#L85: func (c *cipherSuiteTLS13) finishedHash(baseKey []byte, transcript hash.Hash) []byte {
key_schedule.go#L94: func (c *cipherSuiteTLS13) exportKeyingMaterial(masterSecret []byte, transcript hash.Hash) func(string, []byte, int) ([]byte, error) {